home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 26 / AMIGAplus Sonderheft 26 (2000)(Falke)(DE)(Track 1 of 2)[!].iso / Tools / SFX-Player / Mpeg / MrMPEG / Clear.rexx < prev    next >
OS/2 REXX Batch file  |  1999-03-29  |  561b  |  21 lines

  1. /* Clear.rexx */
  2.  
  3. options results; address MrMPEG
  4.  
  5. MUIA_List_Entries    = 0x80421654;    MUIV_List_Remove_Active    = -1
  6.  
  7. call Stop()
  8. list ID SLIST ATTRS MUIA_List_Entries; entries = result
  9. do i = 0 to entries - 1
  10.   list ID SLIST REMOVE POS MUIV_List_Remove_Active
  11. end
  12. string ID FNAME CONTENT "No song is loaded."
  13. text ID LCD LABEL "MrMIDI is also available from Aminet."
  14. text ID ACTIV LABEL "\033b\033r  0"
  15. setvar max 0
  16. text ID MAX LABEL "\033b\033r  0"
  17. setvar total_time '00:00:00'
  18. text ID CURNT LABEL "\033b\033r00:00"
  19. text ID TOTAL LABEL "\033b\033r00:00:00"
  20. return
  21.